a6d34772cdebab47e483f6f764897f472c831170,debugger/impl/com/intellij/debugger/actions/RunToCursorAction.java,RunToCursorAction,actionPerformed,#AnActionEvent#,32
Before Change
}
public void actionPerformed(AnActionEvent e) {
DataContext dataContext = e.getDataContext();
Project project = (Project)dataContext.getData(DataConstants.PROJECT);
if (project == null) {
return;
}
Editor editor = (Editor)dataContext.getData(DataConstants.EDITOR);
if (editor == null) {
return;
}
DebuggerContextImpl context = (DebuggerManagerEx.getInstanceEx(project)).getContext();
DebugProcessImpl debugProcess = context.getDebugProcess();
if (debugProcess == null) {
return;
After Change
}
public void actionPerformed(AnActionEvent e) {
Project project = e.getData(DataKeys.PROJECT);
if (project == null) {
return;
}
Editor editor = e.getData(DataKeys.EDITOR);
if (editor == null) {
return;
}
DebuggerContextImpl context = DebuggerManagerEx.getInstanceEx(project).getContext();
DebugProcessImpl debugProcess = context.getDebugProcess();
if (debugProcess == null) {
return;